933efde020ec9bf8a85a0548342069788b158655,src/freenet/io/xfer/BlockTransmitter.java,BlockTransmitter,onAborted,#number#String#,550
Before Change
_failed = true;
_senderThread.notifyAll();
callFailCallback = maybeFail();
sendAbort = prepareSendAbort();
}
if(sendAbort) {
try {
innerSendAborted(reason, description);
} catch (NotConnectedException e) {
// Ignore
}
After Change
timeAllSent = -1;
_failed = true;
_senderThread.notifyAll();
fail = maybeFail(reason, description);
}
fail.execute();
cancelItemsPending();
}